home *** CD-ROM | disk | FTP | other *** search
- Add data to table
-
- table structure:
-
- mfg_table
-
- COLUMN name null? DATA type
- mfgID not null VARCHAR2 (10)
- mfgName not null VARCHAR2 (25)
- deliverycharge not null NUMBER (6,2)
-
- - This simple insert statement will add one row to the table above
-
- INSERT INTO mfg_table
- VALUES ('1000', 'Audi', '600');
-
- -----------------------------------------------------
- add data to table - specified columns
-
- INSERT INTO mfg_table ('mfgID', 'mfgName')
- VALUES ('1000', 'Audi');
-
- - This statement adds data to specified columns